-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add active external Visio connector to profile property settings list - EXO-69942_68649 #16
Conversation
…s list - EXO-69942 This commit adds the external Visio connectors active for users to the list of profile property settings.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the part about deactivation is missing.
Or do you make it in another PR
|
||
} | ||
|
||
@Override | ||
public ExternalVisioConnector createExternalVisioConnector(ExternalVisioConnectorEntity externalVisioConnectorEntity) { | ||
public ExternalVisioConnector createExternalVisioConnector(ExternalVisioConnectorEntity externalVisioConnectorEntity) throws ObjectAlreadyExistsException { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why throwing the error here ?
if the setting property exists, so it is ok, catch the error, log a warn, and continue.
No need to propagate the error
@@ -76,7 +85,8 @@ private void processUpdatedExternalVisioConnectors(List<ExternalVisioConnector> | |||
}); | |||
} | |||
|
|||
public ExternalVisioConnector updateExternalVisioConnector(ExternalVisioConnectorEntity externalVisioConnectorEntity) throws ObjectNotFoundException { | |||
public ExternalVisioConnector updateExternalVisioConnector(ExternalVisioConnectorEntity externalVisioConnectorEntity) throws ObjectNotFoundException, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here, no need to propagate the errror
Already treated in the updateExternalVisioConnector method. |
…s list - EXO-69942_68649 (#16) This commit adds the external Visio connectors active for users to the list of profile property settings.
…s list - EXO-69942_68649 (#16) This commit adds the external Visio connectors active for users to the list of profile property settings.
…s list - EXO-69942_68649 (#16) This commit adds the external Visio connectors active for users to the list of profile property settings.
…s list - EXO-69942_68649 (#16) This commit adds the external Visio connectors active for users to the list of profile property settings.
This commit adds the external Visio connectors active for users to the list of profile property settings.